home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEAction.au3 < prev    next >
Text File  |  2007-09-08  |  1KB  |  35 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser with the "form" example, get a reference
  3. ;                to the submit button by name and "click" it. This technique
  4. ;                of submitting forms is useful because many forms rely on JavaScript
  5. ;                code and "onClick" events on their submit button making _IEFormSubmit()
  6. ;                not perform as expected
  7. ; *******************************************************
  8. ;
  9. #include <IE.au3>
  10. $oIE = _IE_Example ("form")
  11. $oSubmit = _IEGetObjByName ($oIE, "submitExample")
  12. _IEAction ($oSubmit, "click")
  13. _IELoadWait ($oIE)
  14.  
  15. ; *******************************************************
  16. ; Example 2 - Same as Example 1, except instead of using click, give the element focus
  17. ;                and then use ControlSend to send Enter.  Use this technique when the
  18. ;                browser-side scripting associated with a click action prevents control
  19. ;                from being automatically returned to your code.
  20. ; *******************************************************
  21. ;
  22. #include <IE.au3>
  23. $oIE = _IE_Example ("form")
  24. $oSubmit = _IEGetObjByName ($oIE, "submitExample")
  25. $hwnd = _IEPropertyGet($oIE, "hwnd")
  26. _IEAction ($oSubmit, "focus")
  27. ControlSend($hwnd, "", "[CLASS:Internet Explorer_Server; INSTANCE:1]", "{Enter}")
  28.  
  29. ; Wait for Alert window, then click on OK
  30. WinWait("Windows Internet Explorer", "ExampleFormSubmitted")
  31. ControlClick("Windows Internet Explorer", "ExampleFormSubmitted", "[CLASS:Button; TEXT:OK; Instance:1;]")
  32. _IELoadWait ($oIE)
  33.  
  34.  
  35.